home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 2000 August: Tool Chest / Dev.CD Aug 00 TC Disk 2.toast / pc / sample code / quicktime / quicktime vr / vrscript / common files / appconfiguration.h next >
Encoding:
Text File  |  2000-06-23  |  1.0 KB  |  52 lines

  1. //
  2. //    File:        AppConfiguration.h
  3. //
  4. //    Contains:    Values for configuring the actual application.
  5. //
  6. //    Written by:    Tim Monroe
  7. //                Based (heavily!) on the MovieShell code written by Apple DTS
  8. //
  9. //    Copyright:    © 1994-1996 by Apple Computer, Inc., all rights reserved.
  10. //
  11. //    Change History (most recent first):
  12. //
  13. //       <2>         11/27/96    rtm        conversion to personal coding style
  14. //       <1>         12/30/94    khs        first file
  15. //       
  16. //
  17.  
  18.  
  19. #pragma once
  20.  
  21. #include <Movies.h>
  22.  
  23.  
  24. // Toolbox constants
  25. enum eBasicConstants {
  26.     kWNEDefaultSleep        = 0,                                                                // WNE Sleep time value
  27.     kDefaultSysBeep            = 10
  28. };
  29.  
  30. enum eWindowConstants {
  31.     kDefaultX                = 100,
  32.     kDefaultY                = 100
  33. };
  34.  
  35.  
  36. enum eMemoryConstants {
  37.     kAvailableMem            = 50000            // 50k
  38. };
  39.  
  40. // movie and movie controller constants
  41. enum eMCValues {
  42.      kMCFlags =  0L | mcTopLeftMovie         // default MC setup
  43. };
  44.  
  45. enum eMovieValues {
  46.     kMaxMilliSecToUse        = 0L            // MoviesTask value, 0 indicates as much as possible (serve all movies)
  47.                                             // define other millisecond values if needed.
  48. };
  49.  
  50.  
  51.  
  52.